Helpful Information
 
 
Category: Illustrator CS2
Illustrator CS2 > Tag item returns "name" as "value"

In Illustrator CS2, when I try to add a tag to an object and set its name and value, the value property does not get set correctly. This worked under Illustrator 10 without a hitch.

C# code follows:


Tag bob = m_PageItem.Tags.Add();
bob.Name = "a";
bob.Value = "SOMETHING";
MessageBox.Show("TAG SET: " + bob.Name + " : " + bob.Value);


Illustrator CS2 output: "TAG SET: a : a"

Illustrator 10 output: "TAG SET: a : SOMETHING"










privacy (GDPR)